This forum is closed to new posts and
responses. The content has been migrated to the Digital Solutions Community. Please join us there for new content as well as this content. For customer support, please visit the official HCL customer support channels below:
RE: Convert Multi-Value Field to JavaScript Array? ~Justin Minluternivu 16.Jan.04 11:58 PM a Web browser Domino Designer 6.0.3All Platforms
Splitting "hello" on a semicolon gives an array with one element (the zeroeth) having a value of "hello". <array>.length will return 1. You can use array handling code on this single-element array. Keep in mind, though, that the "real" separator for a multivalue field is <punctuation><space>, so you'll need to split(', ') or split('; ').